home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / HOST32._W_ < prev    next >
Text File  |  1997-07-26  |  624b  |  28 lines

  1. #
  2. # Watcom makefile for HOST [Win32]
  3. # Requires WIL32.DLL & WIL32.LIB
  4. #
  5. # To use: "wmake -f host32._w_"
  6. #
  7.  
  8. CCFLAGS = -w4 -zq -otexan -d2 -3s -bt=nt -mf -DWIN32
  9.  
  10. host.exe : about.obj paint.obj host.obj &
  11.                host.def wil32.lib host.res
  12.     wlink d all SYS nt_win op m libr wil32.lib op maxe=25 op q op symf &
  13.           @host32.lnk
  14.     wrc -q -ad host.res host.exe
  15.  
  16. about.obj : about.c
  17.     wcc386 about.c $(CCFLAGS)
  18.  
  19. paint.obj : paint.c
  20.     wcc386 paint.c $(CCFLAGS)
  21.  
  22. host.obj : host.c
  23.     wcc386 host.c $(CCFLAGS)
  24.  
  25. host.res : host.rc
  26.     wrc host.rc -bt=nt -q -ad -r -fo=host.res  
  27.     
  28.